home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.2 KB | 71 lines | [TEXT/MPS ] |
- ;
- ; File: Scrap.a
- ;
- ; Copyright: © 1984-1994 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__SCRAP__') = 'UNDEFINED' THEN
- __SCRAP__ SET 1
-
-
- IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
- include 'Types.a'
- ENDIF
- ; include 'ConditionalMacros.a' ;
- ScrapStuff RECORD 0
- scrapSize ds.l 1
- scrapHandle ds.l 1
- scrapCount ds.w 1
- scrapState ds.w 1
- scrapName ds.l 1
- sizeof EQU 16
- ENDR
-
- IF GENERATING68K THEN
- _InfoScrap: OPWORD $A9F9
- ELSE
- IMPORT InfoScrap
- ENDIF
-
- IF GENERATING68K THEN
- _UnloadScrap: OPWORD $A9FA
- ELSE
- IMPORT UnloadScrap
- ENDIF
-
- IF GENERATING68K THEN
- _LoadScrap: OPWORD $A9FB
- ELSE
- IMPORT LoadScrap
- ENDIF
-
- IF GENERATING68K THEN
- _GetScrap: OPWORD $A9FD
- ELSE
- IMPORT GetScrap
- ENDIF
-
- IF GENERATING68K THEN
- _ZeroScrap: OPWORD $A9FC
- ELSE
- IMPORT ZeroScrap
- ENDIF
-
- IF GENERATING68K THEN
- _PutScrap: OPWORD $A9FE
- ELSE
- IMPORT PutScrap
- ENDIF
-
- ENDIF ; __SCRAP__
-